This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
2 things ~Umberto Nongeroson 7.Nov.03 06:49 PM a Web browser Domino Server 6.0.1Windows 2000
a) depends on how you call the batchfile. Provide code here so people can see what you're doing.
b) any calls to execute external programs are asynchronous, ie. they won't block or wait, the call will immediately return, regardless how long your batch file will run (it's run inside a CMD.EXE shell anyway). If you really need to wait until the called program completed, you need to obtain the PID of the called process and then monitor it yourself until it goes away (using the W32 API, you could use WaitForSingleObject(), etc.)